+Mon Feb 15 11:13:01 1999 Owen Taylor <otaylor@redhat.com>
+
+ * gtk/gtkwindow.c (gtk_window_set_focus):
+ gtk/gtkwidget.c (gtk_widget_real_grab_focus):
+
+ If the focus widget is the same, but does not currently
+ have the focus, call gtk_window_set_focus(). This is needed
+ so that click focusing with GtkPlug works correctly.
+
Mon Feb 15 07:45:28 1999 Tim Janik <timj@gtk.org>
* configure.in (--enable-debug): default to yes for development trees.
+Mon Feb 15 11:13:01 1999 Owen Taylor <otaylor@redhat.com>
+
+ * gtk/gtkwindow.c (gtk_window_set_focus):
+ gtk/gtkwidget.c (gtk_widget_real_grab_focus):
+
+ If the focus widget is the same, but does not currently
+ have the focus, call gtk_window_set_focus(). This is needed
+ so that click focusing with GtkPlug works correctly.
+
Mon Feb 15 07:45:28 1999 Tim Janik <timj@gtk.org>
* configure.in (--enable-debug): default to yes for development trees.
+Mon Feb 15 11:13:01 1999 Owen Taylor <otaylor@redhat.com>
+
+ * gtk/gtkwindow.c (gtk_window_set_focus):
+ gtk/gtkwidget.c (gtk_widget_real_grab_focus):
+
+ If the focus widget is the same, but does not currently
+ have the focus, call gtk_window_set_focus(). This is needed
+ so that click focusing with GtkPlug works correctly.
+
Mon Feb 15 07:45:28 1999 Tim Janik <timj@gtk.org>
* configure.in (--enable-debug): default to yes for development trees.
+Mon Feb 15 11:13:01 1999 Owen Taylor <otaylor@redhat.com>
+
+ * gtk/gtkwindow.c (gtk_window_set_focus):
+ gtk/gtkwidget.c (gtk_widget_real_grab_focus):
+
+ If the focus widget is the same, but does not currently
+ have the focus, call gtk_window_set_focus(). This is needed
+ so that click focusing with GtkPlug works correctly.
+
Mon Feb 15 07:45:28 1999 Tim Janik <timj@gtk.org>
* configure.in (--enable-debug): default to yes for development trees.
+Mon Feb 15 11:13:01 1999 Owen Taylor <otaylor@redhat.com>
+
+ * gtk/gtkwindow.c (gtk_window_set_focus):
+ gtk/gtkwidget.c (gtk_widget_real_grab_focus):
+
+ If the focus widget is the same, but does not currently
+ have the focus, call gtk_window_set_focus(). This is needed
+ so that click focusing with GtkPlug works correctly.
+
Mon Feb 15 07:45:28 1999 Tim Janik <timj@gtk.org>
* configure.in (--enable-debug): default to yes for development trees.
+Mon Feb 15 11:13:01 1999 Owen Taylor <otaylor@redhat.com>
+
+ * gtk/gtkwindow.c (gtk_window_set_focus):
+ gtk/gtkwidget.c (gtk_widget_real_grab_focus):
+
+ If the focus widget is the same, but does not currently
+ have the focus, call gtk_window_set_focus(). This is needed
+ so that click focusing with GtkPlug works correctly.
+
Mon Feb 15 07:45:28 1999 Tim Janik <timj@gtk.org>
* configure.in (--enable-debug): default to yes for development trees.
+Mon Feb 15 11:13:01 1999 Owen Taylor <otaylor@redhat.com>
+
+ * gtk/gtkwindow.c (gtk_window_set_focus):
+ gtk/gtkwidget.c (gtk_widget_real_grab_focus):
+
+ If the focus widget is the same, but does not currently
+ have the focus, call gtk_window_set_focus(). This is needed
+ so that click focusing with GtkPlug works correctly.
+
Mon Feb 15 07:45:28 1999 Tim Janik <timj@gtk.org>
* configure.in (--enable-debug): default to yes for development trees.
widget = GTK_WINDOW (toplevel)->focus_widget;
if (widget == focus_widget)
- return;
+ {
+ /* We call gtk_window_set_focus() here so that the
+ * toplevel window can request the focus if necessary.
+ * This is needed when the toplevel is a GtkPlug
+ */
+ if (!GTK_WIDGET_HAS_FOCUS (widget))
+ gtk_window_set_focus (GTK_WINDOW (toplevel), focus_widget);
+
+ return;
+ }
if (widget)
{
g_return_if_fail (GTK_WIDGET_CAN_FOCUS (focus));
}
- if (window->focus_widget != focus)
+ if ((window->focus_widget != focus) ||
+ (focus && !GTK_WIDGET_HAS_FOCUS (focus)))
gtk_signal_emit (GTK_OBJECT (window), window_signals[SET_FOCUS], focus);
}